home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Applications / mint / setup / minimal.sh < prev    next >
Text File  |  1994-01-12  |  888b  |  45 lines

  1. # This script installs the very minimal set of programs needed
  2. # to use MacMiNT and install other packages.
  3. #
  4. # These following archives need to be in your $SAVE directory:
  5. #
  6. # (MacMiNT archive)
  7. # futilb.zoo
  8. #
  9. # (Atari Archive)
  10. # Gnustuff/Tos/Othergnu/shlutl18.zoo
  11. # Gnustuff/Tos/Othergnu/gzip107st.zoo
  12. # Mint/Utilities/tar-1112.zoo
  13. #
  14.  
  15. PATH=/usr/local/bin:/bin:/usr/bin:$MGNU/bin:.
  16. export PATH
  17.  
  18. # extract basics
  19. cd bin
  20. zoo xq: $SAVE/futilb.zoo
  21. zoo xq: $SAVE/shlutl18.zoo test.ttp basename.ttp
  22. mv test.ttp [ || \
  23.     echo "can't find $SAVE/futilb.zoo and/or $SAVE/shlutl18.zoo"
  24. chmod +x [ || exit
  25. cd ..
  26.  
  27. # check for everything else
  28. for i in tar-1112.zoo gzip107st.zoo; do
  29.     if [ ! -r $SAVE/$i ] ; then
  30.         echo "can't find $SAVE/$i"
  31.         exit 1
  32.     fi
  33. done
  34.  
  35. mkdir -p usr/bin tmp mac src emacs netbsd
  36.  
  37. cd usr/bin
  38.  
  39. echo tar
  40. zoo xq: $SAVE/tar-1112.zoo tar
  41.  
  42. echo gzip
  43. zoo xq $SAVE/gzip107st.zoo gzip.ttp
  44.  
  45.